From: Glenn Morris Date: Wed, 9 Sep 2009 02:32:48 +0000 (+0000) Subject: (install): Set umask to world-readable before creating directories. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~10617 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=477158c5b2eec81f1127f36e6b3d46c45902a5c4;p=emacs.git (install): Set umask to world-readable before creating directories. --- diff --git a/leim/ChangeLog b/leim/ChangeLog index b1d7cd857c8..e217e6a1724 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog @@ -1,3 +1,8 @@ +2009-09-09 Glenn Morris + + * Makefile.in (install): Set umask to world-readable before creating + directories. + 2009-08-31 Juri Linkov * quail/ipa.el ("ipa"): Set `forget-last-selection' to nil. diff --git a/leim/Makefile.in b/leim/Makefile.in index f114be2b6dd..90698d7f169 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in @@ -224,7 +224,7 @@ MV_DIRS = for i in $$dir; do rm -fr `basename "$$i"` ; mv "$$i" . ; done install: all if [ ! -d ${INSTALLDIR} ] ; then \ - ${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \ + umask 022; ${srcdir}/${dot}${dot}/mkinstalldirs ${INSTALLDIR}; \ else true; fi if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \ rm -f ${INSTALLDIR}/leim-list.el; \